home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / wfc007.000 / include / cwait.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-08  |  564 b   |  32 lines

  1. #if ! defined ( WAIT_CURSOR_CLASS_HEADER )
  2.  
  3. /*
  4. ** Author: Samuel R. Blackburn
  5. ** CI$: 76300,326
  6. ** Internet: sammy@sed.csc.com
  7. **
  8. ** You can use it any way you like.
  9. */
  10.  
  11. #define WAIT_CURSOR_CLASS_HEADER
  12.  
  13. class CWaitCursor
  14. {
  15.    protected:
  16.  
  17.        HCURSOR m_PreviousCursorHandle;
  18.  
  19.    public:
  20.  
  21.        CWaitCursor( int cursor_number = 0 );
  22.  
  23.       /*
  24.       ** Destructor should be virtual according to MSJ article in Sept 1992
  25.       ** "Do More with Less Code:..."
  26.       */
  27.  
  28.       virtual ~CWaitCursor();
  29. };
  30.  
  31. #endif // WAIT_CURSOR_CLASS_HEADER
  32.